Forbes has many shows of great quality, for example: http://video.forbes.com/intelligent-investing/guide
I tried to watch them in WMS by adding the RSS link ("add podcast" option):
http://www.forbes.com/video/static/xml/ ... eds/80.xml

It updates ok in WMS ("update podcast" option). But when I tried to test it (option "test transcoding / default device"),
I got the error message:
"Invalid data found when processing input"

What can it be? Can you do a script to it if needed?

TIA

Folder "Forbes.com Intelligent Investing" - right click - "Edit Title"

"The additional properties reading script RSS" - On - click "Edit Script"
Language: PascalScript
Expression:
Code:
begin
  PodcastItem.Properties[mpiThumbnail] := PodcastXmlItem.Find('media:content').Attributes['url']
end.

Ok

"Script for the links to the resource" - On - click "Edit Script"
Language: PascalScript
Expression:
Code:
var
  sVideoPage: string;
begin
  MediaResourceLink := '';
  if WmsRegExMatch('video=(.*)', mpFilePath, sVideoPage) then 
    WmsRegExMatch('movieURL1 = "(.*?)"', WmsDownloadUrl('http://video.forbes.com/' + sVideoPage), MediaResourceLink)
end.

Ok-Ok

